home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / FINDNEXT.S < prev    next >
Text File  |  1992-03-02  |  260b  |  17 lines

  1.     .globl    _findnext /* ffblk */
  2. _findnext:
  3.     pushl    %ebx
  4.     pushl    %esi
  5.     pushl    %edi
  6.     movl    16(%esp),%edx
  7.     movb    $0x1a,%ah
  8.     int    $0x21        /* set DTA */
  9.  
  10.     movb    $0x4f,%ah
  11.     int    $0x21        /* find first match */
  12.  
  13.     popl    %edi
  14.     popl    %esi
  15.     popl    %ebx
  16.     jmp    syscall_check
  17.